Eclipse Platform
Pre-release 3.0

org.eclipse.core.runtime.jobs
Class MultiRule

java.lang.Object
  extended byorg.eclipse.core.runtime.jobs.MultiRule
All Implemented Interfaces:
ISchedulingRule

public class MultiRule
extends Object
implements ISchedulingRule

A MultiRule is a compound scheduling rule that represents a fixed group of child scheduling rules. A MultiRule conflicts with another rule if any of its children conflict with that rule. More formally, a compound rule represents a logical intersection of its child rules with respect to the isConflicting equivalence relation.

A MultiRule will never contain other MultiRules as children. If a MultiRule is provided as a child, its children will be added instead.

This class is not intended to be subclassed by clients.

Since:
3.0

Constructor Summary
MultiRule(ISchedulingRule[] nestedRules)
          Creates a new scheduling rule that composes a set of nested rules.
 
Method Summary
 boolean contains(ISchedulingRule rule)
          Returns whether this scheduling rule completely contains another scheduling rule.
 ISchedulingRule[] getChildren()
          Returns the child rules within this rule.
 boolean isConflicting(ISchedulingRule rule)
          Returns whether this scheduling rule is compatible with another scheduling rule.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MultiRule

public MultiRule(ISchedulingRule[] nestedRules)
Creates a new scheduling rule that composes a set of nested rules.

Parameters:
nestedRules - the nested rules for this compound rule.
Method Detail

getChildren

public ISchedulingRule[] getChildren()
Returns the child rules within this rule.

Returns:
the child rules

contains

public boolean contains(ISchedulingRule rule)
Description copied from interface: ISchedulingRule
Returns whether this scheduling rule completely contains another scheduling rule. Rules can only be nested within a thread if the inner rule is completely contained within the outer rule.

Implementations of this method must obey the rules of a partial order relation on the set of all scheduling rules. In particular, implementations must be reflexive (a.contains(a) is always true), antisymmetric (a.contains(b) and b.contains(a) iff a.equals(b), and transitive (if a.contains(b) and b.contains(c), then a.contains(c)). Implementations of this method must return false when compared to a rule they know nothing about.

Specified by:
contains in interface ISchedulingRule
Parameters:
rule - the rule to check for containment
Returns:
true if this rule contains the given rule, and false otherwise.

isConflicting

public boolean isConflicting(ISchedulingRule rule)
Description copied from interface: ISchedulingRule
Returns whether this scheduling rule is compatible with another scheduling rule. If true is returned, then no job with this rule will be run at the same time as a job with the conflicting rule. If false is returned, then the job manager is free to run jobs with these rules at the same time.

Implementations of this method must be reflexive, symmetric, and consistent, and must return false when compared to a rule they know nothing about.

Specified by:
isConflicting in interface ISchedulingRule
Parameters:
rule - the rule to check for conflicts
Returns:
true if the rule is conflicting, and false otherwise.

toString

public String toString()

Eclipse Platform
Pre-release 3.0

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.